rpassword 0.2.3

Read passwords in console applications.
Documentation

Rustastic Password

Build status Build status

This Rust package allows you to safely read passwords from standard input in a console application.

You can build the documentation with cargo doc or view it online.

The source code is released under the Apache 2.0 license.

I'd appreciate feedback if you use this library :-)

Usage

Add rpassword as a dependency in Cargo.toml:

[dependencies]
rpassword = "0.2"

Import the rpassword crate and use the read_password() function:

extern crate rpassword;

use rpassword::read_password;

fn main() {
    println!("Type a password: ");
    let password = read_password().unwrap();
    println!("The password is: '{}'", password);
}

Contributors